#import <Foundation/Foundation.h>

int main (int argc, char *argv[])
{
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    char c = 'Q';
    char *charPtr = &c;

    NSLog (@"%c %c", c, *charPtr);

    c = '/';
    NSLog (@"%c %c", c, *charPtr);

    *charPtr = '(';
    NSLog (@"%c %c", c, *charPtr);

    [pool drain];
    return 0;
}